All Users API
POST /allUsers
Description
This API endpoint retrieves a paginated list of all users with optional sorting and filtering.
Request Body
The request uses GraphQL to perform the allUsers
query.
Query:
query allUsers ($sort: Boolean, $page: Int, $size: Int, $param: String, $query: String) {
allUsers (sort: $sort, page: $page, size: $size, param: $param, query: $query) {
totalElements
size
number
}
}